home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in C++ V2 / C13 / all.makefile next >
Encoding:
Makefile  |  2000-05-25  |  2.1 KB  |  89 lines

  1. # From Thinking in C++, 2nd Edition
  2. # At http://www.BruceEckel.com
  3. # (c) Bruce Eckel 1999
  4. # Copyright notice in Copyright.txt
  5. # Automatically-generated MAKEFILE 
  6. # For examples in directory C13
  7. # using the all compiler
  8. # Note: does not make files that will 
  9. # not compile with this compiler
  10. # Invoke with: make -f all.makefile
  11.  
  12. .SUFFIXES : .obj .cpp .c
  13. .cpp.obj :
  14.     $(CPP) $(CPPFLAGS) -c $<
  15. .c.obj :
  16.     $(CPP) $(CPPFLAGS) -c $<
  17.  
  18. all: \
  19.     MallocClass.exe \
  20.     Newdel.exe \
  21.     PStashTest.exe \
  22.     Stack4Test.exe \
  23.     Newhandl.exe \
  24.     GlobalNew.exe \
  25.     Framis.exe \
  26.     ArrayNew.exe \
  27.     NoMemory.exe \
  28.     PlacementNew.exe 
  29.  
  30. test: all 
  31.     MallocClass.exe  
  32.     Newdel.exe  
  33.     PStashTest.exe  
  34.     Stack4Test.exe  
  35.     Newhandl.exe  
  36.     GlobalNew.exe  
  37.     Framis.exe  
  38.     ArrayNew.exe  
  39.     NoMemory.exe  
  40.     PlacementNew.exe  
  41.  
  42. bugs: 
  43.     @echo No compiler bugs in this directory!
  44.  
  45. MallocClass.exe: MallocClass.obj 
  46.     $(CPP) $(OFLAG)MallocClass.exe MallocClass.obj 
  47.  
  48. Newdel.exe: Newdel.obj 
  49.     $(CPP) $(OFLAG)Newdel.exe Newdel.obj 
  50.  
  51. PStashTest.exe: PStashTest.obj PStash.obj 
  52.     $(CPP) $(OFLAG)PStashTest.exe PStashTest.obj PStash.obj 
  53.  
  54. Stack4Test.exe: Stack4Test.obj Stack4.obj 
  55.     $(CPP) $(OFLAG)Stack4Test.exe Stack4Test.obj Stack4.obj 
  56.  
  57. Newhandl.exe: Newhandl.obj 
  58.     $(CPP) $(OFLAG)Newhandl.exe Newhandl.obj 
  59.  
  60. GlobalNew.exe: GlobalNew.obj 
  61.     $(CPP) $(OFLAG)GlobalNew.exe GlobalNew.obj 
  62.  
  63. Framis.exe: Framis.obj 
  64.     $(CPP) $(OFLAG)Framis.exe Framis.obj 
  65.  
  66. ArrayNew.exe: ArrayNew.obj 
  67.     $(CPP) $(OFLAG)ArrayNew.exe ArrayNew.obj 
  68.  
  69. NoMemory.exe: NoMemory.obj 
  70.     $(CPP) $(OFLAG)NoMemory.exe NoMemory.obj 
  71.  
  72. PlacementNew.exe: PlacementNew.obj 
  73.     $(CPP) $(OFLAG)PlacementNew.exe PlacementNew.obj 
  74.  
  75.  
  76. MallocClass.obj: MallocClass.cpp ..\require.h 
  77. Newdel.obj: Newdel.cpp 
  78. PStash.obj: PStash.cpp PStash.h 
  79. PStashTest.obj: PStashTest.cpp PStash.h ..\require.h 
  80. Stack4.obj: Stack4.cpp Stack4.h 
  81. Stack4Test.obj: Stack4Test.cpp Stack4.h ..\require.h 
  82. Newhandl.obj: Newhandl.cpp 
  83. GlobalNew.obj: GlobalNew.cpp 
  84. Framis.obj: Framis.cpp 
  85. ArrayNew.obj: ArrayNew.cpp 
  86. NoMemory.obj: NoMemory.cpp 
  87. PlacementNew.obj: PlacementNew.cpp 
  88.  
  89.